home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-1097 / AMOSLIST / text0081.txt < prev    next >
Encoding:
Text File  |  1998-06-24  |  1.2 KB  |  38 lines

  1. On 08-Oct-97, Matt Ward wrote:
  2. >Hi everyone, still there?
  3.  
  4. We're all still here, are you there....?
  5.  
  6. >In Amospro how do you enter arguments for something you want to
  7. >execute?
  8. >ie
  9. >CLI:    viewtek df0:mypicture.iff
  10. >AMP:    Exec "viewtek"   ?????????
  11. >I`ve tried Commandline$, adding text in the quotes, reading the manual
  12. >(no help!). Any ideas??
  13.  
  14. Maybe try this out....
  15.  
  16. A$="df0:c/viewtek"
  17. b$="df0:pics/mypic"
  18.  
  19. Exec A$+Chr$(32)+B$+Chr$(10)+Chr$(0)
  20.  
  21. You  may  not  need Chr$(10), but Chr$(0) should maybe be there at the
  22. end to NULL terminate the file. Try it different ways.
  23.  
  24. Chr$(32) simply = " " a space. Hope this helps ;)
  25.  
  26. -- 
  27.  ___________________________________ ________________________________
  28. |  _     _                          |                                |
  29. | (-)/\//_)\/    AGAS Productions   |    #cONTACT mE fOR mORE iNFO#    |
  30. |   Gibson_/           9T7          |    #oN aREA51 rELEASES aLSO!#    |
  31. |                                   |                                |
  32. |    andy@agasinc.demon.co.uk       |        cOMING sOON'ish         |
  33. |                                   |        *Roswell Gfx Adv*         |
  34. |     -=<(aka SKiDZ/A51)>=-         |              9T7               |
  35. |___________________________________|________________________________|
  36.  
  37.  
  38.